home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 676-700 / 681 / term / source.lha / PreInclude.c < prev    next >
C/C++ Source or Header  |  1992-05-09  |  3KB  |  140 lines

  1. /*
  2. **    $Id: PreInclude.c,v 1.3 92/04/21 16:59:27 olsen Sta Locker: olsen $
  3. **    $Revision: 1.3 $
  4. **    $Date: 92/04/21 16:59:27 $
  5. **
  6. **    Definition file for precompiled header file
  7. **
  8. **    Copyright © 1990-1992 by Olaf `Olsen' Barthel & MXM
  9. **        All Rights Reserved
  10. */
  11.  
  12.     /* System includes (just a few). */
  13.  
  14. #include <intuition/intuitionbase.h>
  15. #include <libraries/commodities.h>
  16. #include <intuition/gadgetclass.h>
  17. #include <libraries/translator.h>
  18. #include <workbench/workbench.h>
  19. #include <libraries/gadtools.h>
  20. #include <libraries/iffparse.h>
  21. #include <devices/inputevent.h>
  22. #include <graphics/gfxmacros.h>
  23. #include <devices/clipboard.h>
  24. #include <intuition/sghooks.h>
  25. #include <intuition/cghooks.h>
  26. #include <devices/narrator.h>
  27. #include <graphics/gfxbase.h>
  28. #include <hardware/intbits.h>
  29. #include <hardware/dmabits.h>
  30. #include <hardware/custom.h>
  31. #include <devices/console.h>
  32. #include <devices/conunit.h>
  33. #include <dos/filehandler.h>
  34. #include <devices/serial.h>
  35. #include <graphics/scale.h>
  36. #include <dos/dosextens.h>
  37. #include <libraries/asl.h>
  38. #include <devices/audio.h>
  39. #include <devices/input.h>
  40. #include <devices/timer.h>
  41. #include <exec/execbase.h>
  42. #include <hardware/cia.h>
  43. #include <utility/date.h>
  44. #include <exec/devices.h>
  45. #include <dos/datetime.h>
  46. #include <dos/doshunks.h>
  47. #include <clib/macros.h>
  48. #include <exec/memory.h>
  49. #include <rexx/rxslib.h>
  50. #include <rexx/errors.h>
  51. #include <dos/dostags.h>
  52. #include <dos/rdargs.h>
  53. #include <dos/dosasl.h>
  54. #include <dos/var.h>
  55.  
  56.     /* Function prototypes. */
  57.  
  58. #include <clib/commodities_protos.h>
  59. #include <clib/translator_protos.h>
  60. #include <clib/rexxsyslib_protos.h>
  61. #include <clib/intuition_protos.h>
  62. #include <clib/graphics_protos.h>
  63. #include <clib/gadtools_protos.h>
  64. #include <clib/iffparse_protos.h>
  65. #include <clib/utility_protos.h>
  66. #include <clib/layers_protos.h>
  67. #include <clib/alib_protos.h>
  68. #include <clib/icon_protos.h>
  69. #include <clib/exec_protos.h>
  70. #include <clib/dos_protos.h>
  71. #include <clib/asl_protos.h>
  72. #include <clib/wb_protos.h>
  73.  
  74.     /* Include the following direct library interface definitions. */
  75.  
  76. #include <pragmas/utility.h>
  77. #include <pragmas/timer.h>
  78. #include <pragmas/exec.h>
  79.  
  80.     /* Standard `C' includes. */
  81.  
  82. #include <string.h>
  83. #include <stdarg.h>
  84. #include <stddef.h>
  85.  
  86.     /* Are we using the new includes? */
  87.  
  88. #ifdef ASLSM_FilterFunc
  89.  
  90. #include <libraries/locale.h>
  91. #include <clib/locale_protos.h>
  92.  
  93. #endif    /* ASLSM_FilterFunc */
  94.  
  95. #include "term_strings.h"
  96.  
  97.     /* Special character codes. */
  98.  
  99. #define XOF '\21'
  100. #define XON '\23'
  101.  
  102. #define BEL '\a'
  103. #define VTB '\v'
  104. #define TAB '\t'
  105. #define BKS '\b'
  106. #define ENT '\n'
  107. #define RET '\r'
  108. #define ESC '\033'
  109. #define DEL '\177'
  110. #define FFD '\f'
  111. #define CAN '\030'
  112. #define SUB '\032'
  113. #define ENQ '\005'
  114. #define SI  '\016'
  115. #define SO  '\017'
  116.  
  117.     /* Internally handled control keys. */
  118.  
  119. #define CUP 150
  120. #define CDN 151
  121. #define CFW 152
  122. #define CBK 153
  123.  
  124. #define FN1 128
  125. #define FN2 129
  126. #define FN3 130
  127. #define FN4 131
  128. #define FN5 132
  129. #define FN6 133
  130. #define FN7 134
  131. #define FN8 135
  132. #define FN9 136
  133. #define F10 137
  134.  
  135. #define HLP 149
  136.  
  137.     /* Control sequence introducer. */
  138.  
  139. #define CSI 155
  140.